#include <stdio.h>
int main ()
{
long long total seconds;
long long years, months, days, hours, minutes,seconds;

printf ("Enter total seconds:");
scanf ("%lld",total seconds);

long long seconds in minute = 60;
long long seconds in hour = 60*sec in hour;
long long seconds in day = 24*sec in day;
long long seconds in month = 30*sec in day;
long long seconds in year = 365*sec in day;

years= total seconds/ seconds in year;
total seconds%= total sec in year;

months= total seconds/sec in month;
total seconds%= total sec in month;

days= total seconds/sec in day;
total seconds%= total sec in day;

hours= total seconds/sec in hour;
total seconds%= total sec in hour;

minutes= total seconds/sec in min;
total seconds%= total sec in min;

seconds%= total seconds;

printf ("Equivalent time:\n");

return 0;
}
